From: Richard M. Stallman Date: Wed, 4 May 1994 03:28:38 +0000 (+0000) Subject: (x_set_cursor_color): Fix typo. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~91754 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=5fd2229822c2dda0a03b7694a38c4ab52c5294d8;p=emacs.git (x_set_cursor_color): Fix typo. --- diff --git a/src/xfns.c b/src/xfns.c index f388423927a..79a2b2b347d 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -842,7 +842,7 @@ x_set_cursor_color (f, arg, oldval) /* Make sure that the cursor color differs from the background color. */ if (f->display.x->cursor_pixel == f->display.x->background_pixel) { - f->display.x->cursor_pixel == f->display.x->mouse_pixel; + f->display.x->cursor_pixel = f->display.x->mouse_pixel; if (f->display.x->cursor_pixel == fore_pixel) fore_pixel = f->display.x->background_pixel; }